home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / yacc / flexyacc / aflex.lha / aflex / src / genS.a < prev    next >
Text File  |  1991-05-16  |  2KB  |  45 lines

  1. -- Copyright (c) 1990 Regents of the University of California.
  2. -- All rights reserved.
  3. --
  4. -- This software was developed by John Self of the Arcadia project
  5. -- at the University of California, Irvine.
  6. --
  7. -- Redistribution and use in source and binary forms are permitted
  8. -- provided that the above copyright notice and this paragraph are
  9. -- duplicated in all such forms and that any documentation,
  10. -- advertising materials, and other materials related to such
  11. -- distribution and use acknowledge that the software was developed
  12. -- by the University of California, Irvine.  The name of the
  13. -- University may not be used to endorse or promote products derived
  14. -- from this software without specific prior written permission.
  15. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  16. -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  17. -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18.  
  19. -- TITLE scanner generation
  20. -- AUTHOR: John Self (UCI)
  21. -- DESCRIPTION
  22. -- NOTES does actual generation (writing) of output aflex scanners
  23. -- $Header: /co/ua/self/arcadia/aflex/ada/src/RCS/genS.a,v 1.4 90/01/12 15:20:07 self Exp Locker: self $ 
  24.  
  25. with MISC_DEFS; use MISC_DEFS; 
  26. package GEN is 
  27.   procedure DO_INDENT; 
  28.   procedure GEN_BACKTRACKING; 
  29.   procedure GEN_BT_ACTION; 
  30.   procedure GEN_FIND_ACTION; 
  31.   procedure GEN_NEXT_COMPRESSED_STATE; 
  32.   procedure GEN_NEXT_MATCH; 
  33.   procedure GEN_NEXT_STATE; 
  34.   procedure GEN_START_STATE; 
  35.   procedure GENECS; 
  36.   procedure GENFTBL; 
  37.   procedure INDENT_PUTS(STR : in STRING); 
  38.   procedure GENTABS; 
  39.   procedure INDENT_DOWN; 
  40.   procedure INDENT_UP; 
  41.   procedure SET_INDENT(INDENT_VAL : in INTEGER); 
  42.   procedure MAKE_TABLES; 
  43.   procedure DO_SECT3_OUT; 
  44. end GEN; 
  45.